Heroku now makes an empty repo with the deployment button (#1570)

Andrew Cantino 8 年之前
父節點
當前提交
e1a2b5ae25
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      app/views/devise/registrations/new.html.erb

+ 3 - 1
app/views/devise/registrations/new.html.erb

@@ -19,9 +19,11 @@
19 19
 
20 20
               <li>Run the following commands:<br />
21 21
                 <%= content_tag :pre do -%>
22
-heroku git:clone --app <%= content_tag :var, app_name %>
22
+git clone https://github.com/cantino/huginn.git <%= content_tag :var, app_name %>
23 23
 cd <%= content_tag :var, app_name %>
24
+heroku git:remote -a <%= content_tag :var, app_name %>
24 25
 cp .env.example .env
26
+gem install bundler
25 27
 bundle
26 28
 bin/setup_heroku
27 29
 <%- end %>